home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Proxies / ConstProxy.h < prev    next >
Text File  |  1997-06-28  |  216b  |  16 lines

  1. // ConstProxy.h
  2.  
  3. #ifndef ConstProxy_h
  4. #define ConstProxy_h
  5.  
  6. template < class StoodFor >
  7. class ConstProxy
  8.   {
  9.     public:
  10.         virtual StoodFor Get() const = 0;
  11.         
  12.         operator StoodFor() const    { return Get(); }
  13.   };
  14.  
  15. #endif
  16.